-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First commit #1
base: main
Are you sure you want to change the base?
First commit #1
Conversation
|
||
## Required Inputs | ||
|
||
- `AC_TESTINIUM_APP_PATH`: Full path of the build. For example $AC_EXPORT_DIR/Myapp.ipa. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same suggestion here:
- `AC_TESTINIUM_APP_PATH`: Full path of the build. For example $AC_EXPORT_DIR/Myapp.ipa. | |
- `AC_TESTINIUM_APP_PATH`: Full path of the build. For example $AC_OUTPUT_DIR/MyApp.ipa. |
- `AC_TESTINIUM_PROJECT_ID`: Testinium project ID. | ||
- `AC_TESTINIUM_COMPANY_ID`: Testinium company ID. | ||
- `AC_TESTINIUM_TIMEOUT`: Testinium plan timeout in minutes. | ||
- `AC_TESTINIUM_MAX_API_RETRY_COUNT`: Determine max repetition in case of Testinium platform congestion or API errors. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When I searched briefly, the word retry is used more often in the sense of repeating a connection again. The word repetition is used in the sense of repeating something as independently error. Example usages
If the connection fails, the system will retry after 5 seconds.
Learning a new language requires constant repetition.
- `AC_TESTINIUM_MAX_API_RETRY_COUNT`: Determine max repetition in case of Testinium platform congestion or API errors. | |
- `AC_TESTINIUM_MAX_API_RETRY_COUNT`: Determine max retry in case of Testinium platform congestion or API errors. |
defaultValue: "$AC_TESTINIUM_APP_PATH" | ||
isRequired: true | ||
title: Path of the build | ||
description: "Full path of the build file. Example for iOS: `$AC_EXPORT_DIR/MyApp.ipa`. Example for Android: `$AC_APK_PATH`." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same suggestion;
description: "Full path of the build file. Example for iOS: `$AC_EXPORT_DIR/MyApp.ipa`. Example for Android: `$AC_APK_PATH`." | |
description: "Full path of the build file. Example for iOS: `$AC_OUTPUT_DIR/MyApp.ipa`. Example for Android: `$AC_APK_PATH`." |
defaultValue: "4" | ||
isRequired: true | ||
title: Testinium Maximum API Repetition Count | ||
description: "Determine max repetition in case of Testinium platform congestion or API errors." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
description: "Determine max repetition in case of Testinium platform congestion or API errors." | |
description: "Determine max retry in case of Testinium platform congestion or API errors." |
- key: "AC_TESTINIUM_MAX_API_RETRY_COUNT" | ||
defaultValue: "4" | ||
isRequired: true | ||
title: Testinium Maximum API Repetition Count |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
title: Testinium Maximum API Repetition Count | |
title: Testinium Maximum API Request Retry Count |
No description provided.